math/rand.rngSource.feed (field)
7 uses
math/rand (current package)
rng.go#L182: feed int // index into vec
rng.go#L206: rng.feed = rngLen - rngTap
rng.go#L244: rng.feed--
rng.go#L245: if rng.feed < 0 {
rng.go#L246: rng.feed += rngLen
rng.go#L249: x := rng.vec[rng.feed] + rng.vec[rng.tap]
rng.go#L250: rng.vec[rng.feed] = x
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |